home *** CD-ROM | disk | FTP | other *** search
/ Ultra Gameplayers 101 / Ultra Game Players Magazine, No. 101 - September 1997 (Imagine Publishing, Inc.)(1997).iso / pc / new_ugp.dxr / 00313.ls < prev    next >
Encoding:
Text File  |  1997-07-10  |  509 b   |  27 lines

  1. global globalData
  2.  
  3. on checkInitGlobalData
  4.   if voidp(globalData) = 1 then
  5.     set globalData to [:]
  6.   end if
  7. end
  8.  
  9. on SetGlobal newProp, newData
  10.   checkInitGlobalData()
  11.   setaProp(globalData, newProp, newData)
  12. end
  13.  
  14. on GetGlobal newProp
  15.   checkInitGlobalData()
  16.   set currValue to getaProp(globalData, newProp)
  17.   return currValue
  18. end
  19.  
  20. on DeleteGlobal newProp
  21.   checkInitGlobalData()
  22.   set currValue to getaProp(globalData, newProp)
  23.   if not voidp(currValue) then
  24.     deleteProp(globalData, newProp)
  25.   end if
  26. end
  27.